home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 52
/
Aminet 52 (2002)(GTI - Schatztruhe)[!][Dec 2002].iso
/
Aminet
/
game
/
patch
/
WHDIDemos.lzh
/
RSI_Cebit90.lha
/
Install
< prev
next >
Wrap
Text File
|
1980-01-12
|
3KB
|
156 lines
;****************************
(set #readme-file "ReadMe") ;name of readme file
;****************************
;----------------------------
; checks if given program is installed, if not abort install
; #program - to check
(procedure P_ChkRun
(if
(= 0 (run ("cd SYS:\nWhich %s" #program)))
("")
(abort
(cat
"You must install \"" #program "\" first!\n"
"It must be accessible via the path.\n"
"You can find it in the WHDLoad package."
)
)
)
)
(procedure P_ChkRun_XFD
(if
(= 0 (run ("cd SYS:\nWhich %s" #program)))
("")
(abort
(cat
"You must install \"" #program "\" first!\n"
"It must be accessible via the path.\n"
"You can find it in the XFD package."
)
)
)
)
(procedure P_ChkRun_UNADF
(if
(= 0 (run ("cd SYS:\nWhich %s" #program)))
("")
(abort
(cat
"You must install \"" #program "\" first!\n"
"It must be accessible via the path.\n"
"You can find it in the UNADF package."
)
)
)
)
;----------------------------
; Wait for inserting disk
; IN: #AD_disk - name of disk
; OUT: -
(procedure P_disk
(message ("Ensure the file CEBIT90.adf is available in RAM:"))
)
;****************************
(if
(exists #readme-file)
(if
(= 0 (run ("SYS:Utilities/Multiview %s" #readme-file)))
("")
(run ("SYS:Utilities/More %s" #readme-file))
)
)
(set #program "WHDLoad")
(P_ChkRun)
(set #program "xfddecrunch")
(P_ChkRun_XFD)
(set #program "UNadf")
(P_ChkRun_UNADF)
(set @default-dest
(askdir
(prompt ("Where should \"%s\" be installed?\nA drawer \"%s\" will be automatically created." @app-name @app-name))
(help @askdir-help)
(default @default-dest)
(disk)
)
)
(set #dest (tackon @default-dest @app-name))
(if
(exists #dest)
(
(set #choice
(askbool
(prompt ("\nDirectory \"%s\" already exists.\n Should it be deleted?" #dest))
(default 1)
(choices "Delete" "Skip")
(help @askbool-help)
)
)
(if
(= #choice 1)
(run ("Delete \"%s\" \"%s.info\" All" #dest #dest))
)
)
)
(makedir #dest
(help @makedir-help)
(infos)
)
;----------------------------
(copyfiles
(help @copyfiles-help)
(source ("CEBIT90.Slave"))
(dest #dest)
)
(copyfiles
(help @copyfiles-help)
(source ("proreplay.bin"))
(dest #dest)
)
(copyfiles
(help @copyfiles-help)
(source ("CEBIT90.info"))
(dest #dest)
)
(if
(exists #readme-file)
(copyfiles
(help @copyfiles-help)
(source #readme-file)
(dest #dest)
)
)
(if
(exists ("Readme.info"))
(copyfiles
(help @copyfiles-help)
(source ("Readme.info"))
(dest #dest)
)
)
;----------------------------
(P_disk)
(run ("UNadf RAM:CEBIT90.adf DEST=RAM: >CON:///1000//CLOSE"s))
(copyfiles
(help @copyfiles-help)
(source ("RAM:cebit `90/rsi-cebit'90.exe"))
(dest #dest)
)
;----------------------------
(run ("Delete RAM:CEBIT90.adf ALL QUIET FORCE"))
(exit)